home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2MISC / CSDPMI1S.ZIP / SRC / CWSDPMI / XMS.H < prev   
Encoding:
Text File  |  1994-12-16  |  461 b   |  13 lines

  1. /* xms.h - parts copied from Kent Williams william@umaxc.weeg.uiowa.edu */
  2.  
  3. int xms_installed(void);
  4. int xms_local_enable_a20(void);
  5. int xms_local_disable_a20(void);
  6. int xms_query_extended_memory(void);    /* Returns largest free block */
  7. int xms_emb_allocate(word16 size);
  8. int xms_emb_free(int16 handle);
  9.  
  10. /*returns 32 bit linear address of emb specified by handle, 0 otherwise. */
  11. word32 xms_lock_emb(int16 handle);
  12. int xms_unlock_emb(int16 handle);
  13.